There is no good reason anymore to default to TRUE, and this
default only makes applications miss out on useful functionality.
g_param_spec_boolean ("local-only",
P_("Local Only"),
P_("Whether the selected file(s) should be limited to local file: URLs"),
- TRUE,
+ FALSE,
GTK_PARAM_READWRITE));
g_object_interface_install_property (iface,
g_param_spec_object ("preview-widget",
GtkEntryCompletion *comp;
GtkCellRenderer *cell;
- chooser_entry->local_only = TRUE;
+ chooser_entry->local_only = FALSE;
g_object_set (chooser_entry, "truncate-multiline", TRUE, NULL);
impl->priv = gtk_file_chooser_widget_get_instance_private (impl);
priv = impl->priv;
- priv->local_only = TRUE;
+ priv->local_only = FALSE;
priv->preview_widget_active = TRUE;
priv->use_preview_label = TRUE;
priv->select_multiple = FALSE;